pointer address

英 [ˈpɔɪntə(r) əˈdres] 美 [ˈpɔɪntər əˈdres]

网络  指针地址

计算机



双语例句

  1. The__user macro simply tells the compiler ( through noderef) that the pointer should not be dereferenced ( as it's not meaningful in the current address space).
    user宏简单告诉编译器(通过noderef)不应该解除这个指针的引用(因为在当前地址空间中它是没有意义的)。
  2. Address: Suspends the program when the execution pointer reaches a particular address in the program.
    Address:当执行指针达到程序中一个特定的地址时会暂停一个程序。
  3. Name is the pointer to the buffer that has the foreign IP/ port address pair.
    name是指向具有外来IP/端口地址对的缓冲区的指针。
  4. Name is the pointer to the buffer that contains the network transport address.
    name是指向包含网络传输地址的缓冲区的指针。
  5. Important registers to look for when debugging through signals are the GPRs, instruction pointer ( NIP), machine state register ( MSR), trap, data address register ( DAR), and so on.
    在调试信号时,需要查看的一些重要寄存器包括GPR、指令指针(NIP)、机器状态寄存器(MSR)、Trap、数据地址寄存器(DAR)等等。
  6. If even a single thread's instruction pointer refers to a function's code in memory or a single thread's kernel stack refers to a return address within the function, the function is considered active and cannot be replaced.
    如果线程的指令指针引用内存中的函数代码,或者线程的内核堆栈引用函数中的返回地址,就认为这个函数是活跃的,无法替换。
  7. A COM client interacts with a COM object by acquiring a pointer to one of the object's interfaces and invoking methods through that pointer, as if the object resides in the client's address space.
    COM的客户程序通过获取指向一个对象接口的一个指针,并通过该指针来调用方法以实现与COM对象之间的互相作用,就好像对象驻留在客户程序的地址空间中一样。
  8. Conversely, if your program has a fault ( for example, using a bad pointer) at some location in memory, you can look for the source line that is closest to the memory address.
    相反,如果您的程序在内存中某个位置存在错误(例如,使用了一个错误指针),那么可以查找最接近该内存地址的源代码行。
  9. When a long string variable is assigned a string constant, the string pointer is assigned the address of the memory block generated for the string constant.
    当一个串变量被赋予一个串常量时,串指针被赋予串常量内存块的地址。
  10. Pointer is a special variable that stores the value which is interpreted as a memory address.
    指针是一个特殊的变量,它里面存储的数值被解释成为内存里的一个地址。
  11. The system detected an invalid pointer address in attempting to use a pointer argument in a call.
    系统检测到在一个调用中尝试使用指针参数时的无效指针地址。
  12. In fact, the wrapper function saves the pointer fn into the child's stack position corresponding to the return address of the wrapper function itself;
    事实上,包装函数将fn指针保存在子进程的栈中对应包装器本身的返回地址的位置;
  13. Whenever an instruction is fetched from memory, the instruction pointer is translated via the instruction TLB into a physical address.
    无论何时从内存中取一个指令,指令指针都会经指令TLB的翻译后指向物理地址。
  14. If you specify a delta, the number specified will be added to the current instruction pointer or specified address to begin disassembling.
    如果指定了增量,则指定的数目将添加到当前指令指针或指定地址以开始反汇编。
  15. Instead if we want this pointer to represent the address of something in as much as it points at that address let's just draw an arrow.
    如果我们想要让这个指针表示,数据的地址,它指向的地址,我用一个箭头表示。
  16. [ in] Pointer to the starting address of the block of memory to fill with zeros.
    指向一块准备用0来填充的内存区域的开始地址。
  17. EFAULT The receive buffer pointer ( s) point outside the process's address space.
    应该是你的接收缓冲区有问题,呵呵。
  18. Using pointer, programmer can operate the internal memory according to the address to realize some specific functions flexibly.
    使用指针程序员可以按地址操作计算机内存,灵活实现一些特定功能;
  19. Stressing the property of pointer, setting level to array's address, starting from the relationship between the level of pointer and the dimension of array, the paper reveals the pointer process of multi-dimensional array in C language and its application.
    强调了指针变量的特殊性,对数组中的地址定级,从指针的级与数组维数对应关系角度,阐明了C语言中多维数组指针处理技术及其应用。
  20. This, which is called this pointer in C++ and this reference in C#, Standing for memory address of the current instance.
    this在C++中称为this指针,它代表了当前实例的内存地址;在C中称为this引用。